EXPORT.RUN_SILENT Function

Syntax

C export.run_silent(C layoutname [,C filter [,C order [,* arguments ]]])

Arguments

layoutname

The name of a previously created export operation.

filter

Optional. Default = "". A character filter expression that evaluates to a logical value and selects records to export.

order

Optional. Default = record order. A character order expression that sorts selected records.

arguments

*

Description

Runs an Export operation without displaying any prompts

Discussion

The EXPORT.RUN_SILENT() method exports data using a previously defined export operation, but without user interaction.

The following example runs the saved Customer Export operation.

export.run("Customer Export", "Lastname >  'M'", "Firstname")

Limitations

Desktop applications only.

See Also